在vue项目中,使用swiper插件,使用回调函数,在数据中定义swiperOption对象,在对象中调用swiper的回调函数
data () {
return {
realIndex: 0,
swiperOption: {
// 获取当前版块的index
onSlideChangeEnd: () => {
// this指向vm
let swiper = this.$refs.mySwiper.swiper
this.realIndex = swiper.realIndex
},
// 滑动到最后一个版块,触发回调函数
onReachEnd: () => {
this.realIndex = 999
}
}
}
},
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。